home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 18 / Silicon_Graphics_hot mix 18.iso / html / vendors / cocreate / fixall < prev    next >
Encoding:
Text File  |  1997-12-22  |  113 b   |  9 lines

  1. #!/bin/perl
  2.  
  3. @allfiles = `find . -name '*.htm'`;
  4.  
  5. foreach $file (@allfiles){
  6.     $file =~ /(.*)\s*/;
  7.     `fixem $1`;
  8. }
  9.